        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            margin-bottom: 40px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            color: #d4af37;
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 2px;
            text-decoration: none; /* Make logo clickable to home */
        }

        .logo-img {
            width: 40px;
            height: 40px;
            margin-right: 10px;
        }

        /* Gallery Specific Styles */
        h1 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #1a1a1a;
            position: relative;
        }

        h1::after {
            content: '';
            display: block;
            width: 150px;
            height: 4px;
            background: #d4af37;
            margin: 20px auto;
            border-radius: 2px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .gallery-item-info {
            padding: 15px;
            text-align: center;
        }

        .gallery-item-info h3 {
            color: #d4af37;
            margin-bottom: 10px;
        }

        .gallery-item-info p {
            font-size: 0.9rem;
            color: #555;
        }

        .back-button {
            display: inline-block;
            background: #d4af37;
            color: #1a1a1a;
            padding: 10px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            margin-top: 40px;
            transition: all 0.3s ease;
            text-align: center;
        }

        .back-button:hover {
            background: #f4d03f;
            transform: translateY(-2px);
        }

        footer {
            background: #1a1a1a;
            color: white;
            text-align: center;
            padding: 2rem 0;
            border-top: 2px solid #d4af37;
            margin-top: 50px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }